home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #include <condefs.h>
- #include <conio.h>
- #include <iostream.h>
- #pragma hdrstop
-
- //---------------------------------------------------------------------------
- //
- // We comment out the argc and argv variables to avoid
- // compiler warnings.
- //
- int main(int /*argc*/, char /***argv*/)
- {
- cout << endl << "Starting program..." << endl << endl;
- int i;
- for (i=0;i<10;i++) {
- cout << "Iteration number " << i << endl;
- }
- cout << endl;
- for (i=10;i>0;i--) {
- cout << "Iteration number " << i << endl;
- }
- getch();
- return 0;
- }
- //---------------------------------------------------------------------------
-
-